home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / JAVA / AWT / GridBagLayoutInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-04-14  |  489 b   |  13 lines

  1. package java.awt;
  2.  
  3. class GridBagLayoutInfo {
  4.    int width;
  5.    int height;
  6.    int startx;
  7.    int starty;
  8.    int[] minWidth = new int[128];
  9.    int[] minHeight = new int[128];
  10.    double[] weightX = new double[128];
  11.    double[] weightY = new double[128];
  12. }
  13.